home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _5E9DA1392A624A208E8942C7CFFDBE78 < prev    next >
Encoding:
Text File  |  2006-08-04  |  1.0 KB  |  37 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro 9',
  9.         'Host Version': u'9.00'
  10.         }
  11.  
  12. def Preset_RadialBlur():
  13.     return {
  14.         'RadialBlurType': App.Constants.RadialBlurType.Spin, 
  15.         'Strength': 2, 
  16.         'TwirlDegrees': 0, 
  17.         'CenterX': 0, 
  18.         'CenterY': 0, 
  19.         'Aperture': 0, 
  20.         'Aspect': 1, 
  21.         'GeneralSettings': {
  22.             'ExecutionMode': App.Constants.ExecutionMode.Default, 
  23.             'DialogPlacement': {
  24.                 'ShowMaximized': False, 
  25.                 'Rect': ((0,0), 0, 0)
  26.                 }, 
  27.             'PreviewVisible': True, 
  28.             'AutoProof': False, 
  29.             'AutoActionMode': App.Constants.AutoActionMode.Match
  30.             }
  31.         }
  32.  
  33. def Do(Environment):
  34.     # RadialBlur
  35.     App.Do( Environment, 'RadialBlur',         Preset_RadialBlur())
  36.  
  37.